.review-badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 15px auto;
}

.badge-box {
  width: 130px;
  height: 130px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award-badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 15px auto;
}

.award-badge {
  width: 130px;
  height: 130px;
  background-color: #f5f5f5;
  border: 2px solid #777;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.award-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.award-image {
  width: 100%;
  height: 85px;         
  object-fit: contain; 
  margin-bottom: 8px;
}

.award-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}